home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / Mark Pilgrim / Kant Generator Pro 1.0.1 / source / kode new / kant parser.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-30  |  320 b   |  14 lines  |  [TEXT/MMCC]

  1. #ifndef __KANT_PARSER_H__
  2. #define __KANT_PARSER_H__
  3.  
  4. enum ErrorType
  5. {
  6.     kNoError=0, kNoReferenceName, kBadReference, kBadChoiceFormat, kBadOptionalFormat,
  7.         kNoInstantiations, kBadBackslash, kUserCancelled
  8. };
  9.  
  10. void InitTheParser(WindowPtr theWindow, short rawStart, short rawEnd);
  11. enum ErrorType ParseLoop(void);
  12.  
  13. #endif
  14.